home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QRZ! Ham Radio 6
/
QRZ Ham Radio Callsign Database - Volume 6.iso
/
mac
/
files
/
amiga
/
rhinosrc.lha
/
unused
/
pc100vec.asm
< prev
next >
Wrap
Assembly Source File
|
1992-04-03
|
635b
|
44 lines
; PC-100 (8530 card) interrupt hooks
.MODEL MEMMOD,C
LOCALS
%MACS
.LALL
extrn Stktop,Spsave,Sssave,pcint:proc,doret:proc,eoi:proc
.CODE
dbase dw @Data ; save loc for ds (must be in code segment)
; pc0vec - PC-100 card #0 interrupt handler
public pc0vec
label pc0vec far
push ds ; save on user stack
mov ds,cs:dbase
mov Sssave,ss ; stash user stack context
mov Spsave,sp
mov ss,cs:dbase
lea sp,Stktop
push ax ; save user regs on interrupt stack
push bx
push cx
push dx
push bp
push si
push di
push es
call eoi
mov ax,0 ; arg for service routine
push ax
call pcint
inc sp
inc sp
jmp doret
end